Skip to main content
Version: 1.0.2

Update Card Holder Details

Update the details of a card holder based on fresh inputs.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample value: "visadps100054"

product

Mandatory

String

Name of the product associated with the card

Sample value: "DEFAULT"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction

happens

Valid values:

PULSE

VISA_DPS

Sample value: "VISA_DPS"

transactionType

Mandatory

String

Type of operation/transaction

Constant value: "UPDATE_CARD_HOLDER"

customerId

Mandatory

String

Unique Id of the customer

Sample value: "100000000006001"

accountNumber

Mandatory

String

Account number of the customer

Sample value: "400320588344662"

cardHolder

Mandatory

Object

cardHolderId

Mandatory

String

Unique id of the card holder

Sample value: "CH00000000020002"

firstName

Optional

String

First name of the account holder

Sample value: "Smith"

lastName

Optional

String

Last name of the account holder

Sample value: "Johnson"

phoneNumber

Optional

String

Phone number of the account holder

Sample value: "9456302150"

emailId

Optional

String

Email address of the account holder

Sample value: "mathewsandra+1@netxd.com"

addressLine1

Optional

String

First line of account holder's address

Sample value: "77 HOIT RD"

addressLine2

Optional

String

Second line of account holder's address

Sample value: "1st street"

city

Optional

String

City where account holder resides

Sample value: "EPSOM"

state

Optional

String

State where account holder resides

Sample value: "AZ"

zipCode

Optional

String

Zipcode of account holder's address

Sample value: "67859"


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data-raw '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100054","product":"DEFAULT","program":"DEFAULT","channel":"VISA_DPS","transactionType":"UPDATE_CARD_HOLDER","customerId":"100000000006001","accountNumber":"400320588344662","cardHolder":{"cardHolderId":"CH00000000020002","firstName":"Smith","lastName":"Johnson","phoneNumber":"9456302150","emailId":"mathewsandra+1@netxd.com","addressLine1":"77 HOIT RD","addressLine2":"1st street","city":"EPSOM","state":"AZ","zipCode":"67859"}},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'

Body

{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100054",
"product": "DEFAULT",
"program": "DEFAULT",
"channel": "VISA_DPS",
"transactionType": "UPDATE_CARD_HOLDER",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"cardHolder": {
"cardHolderId": "CH00000000020002",
"firstName": "Smith",
"lastName": "Johnson",
"phoneNumber": "9456302150",
"emailId": "mathewsandra+1@netxd.com",
"addressLine1": "77 HOIT RD",
"addressLine2": "1st street",
"city": "EPSOM",
"state": "AZ",
"zipCode": "67859"
}
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

id

String

Unique id of the response

Sample value: " 1"

result

Object

cardHolderId

String

Response Id echoed from the request Id

Sample value: "CH00000000020002"

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " UPDATE_CARD_HOLDER_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REFvisadps100054"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1732095752

originalReference

String

Original reference ID taken from the request

Sample value: " visadps100054"


{
"id": "1",
"result": {
"cardHolderId": "CH00000000020002",
"api": {
"type": "UPDATE_CARD_HOLDER_ACK",
"reference": "REFvisadps100054",
"dateCreated": 1732095752,
"originalReference": "visadps100054"
}
}
}